home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2006 April / DPPRO0406DVD.ISO / Essentials / Programming / Eclipse SDK / eclipse-SDK-3.1.1-win32.exe / eclipse / plugins / org.eclipse.jdt.ui_3.1.1.jar / templates / default-templates.properties < prev    next >
Encoding:
Text File  |  2005-09-29  |  6.9 KB  |  130 lines

  1. ###############################################################################
  2. # Copyright (c) 2000, 2005 IBM Corporation and others.
  3. # All rights reserved. This program and the accompanying materials
  4. # are made available under the terms of the Eclipse Public License v1.0
  5. # which accompanies this distribution, and is available at
  6. # http://www.eclipse.org/legal/epl-v10.html
  7. #
  8. # Contributors:
  9. #     IBM Corporation - initial API and implementation
  10. ###############################################################################
  11.  
  12. Templates.for_array=iterate over array
  13. Templates.for_temp=iterate over array with temporary variable
  14. Templates.for_collection=iterate over collection
  15. Templates.for_iterable=iterate over an array or Iterable
  16. Templates.while_enumeration=iterate with enumeration
  17. Templates.while_iterator=iterate with iterator
  18. Templates.do=do while statement
  19. Templates.switch=switch case statement
  20. Templates.if=if statement
  21. Templates.ifelse=if else statement
  22. Templates.elseif=else if block
  23. Templates.else=else block
  24. Templates.try=try catch block
  25. Templates.catch=catch block
  26. Templates.main=main method
  27. Templates.public_method=public method
  28. Templates.protected_method=protected method
  29. Templates.private_method=private method
  30. Templates.private_static_method=private static method
  31. Templates.instanceof=dynamic type test and cast
  32. Templates.cast=dynamic cast
  33. Templates.toarray=convert collection to array
  34. Templates.test=test method
  35. Templates.systrace=print current method to standard out
  36. Templates.sysout=print to standard out
  37. Templates.syserr=print to standard error
  38. Templates.code_tag=<code></code>
  39. Templates.code_tag_null=<code>null</code>
  40. Templates.code_tag_true=<code>true</code>
  41. Templates.code_tag_false=<code>false</code>
  42. Templates.pre_tag=<pre></pre>
  43. Templates.b_tag=<b></b>
  44. Templates.i_tag=<i></i>
  45. Templates.author=author name
  46. Templates.new=create new object
  47. Templates.lazy=lazy creation
  48. Templates.while_condition=while loop with condition
  49. Templates.non-nls= non-externalized string marker
  50. Templates.synchronized= synchronized block
  51. Templates.runnable= runnable
  52.  
  53. # Java Only stuff
  54. CompilationUnitContextType.variable.description.file=Filename of compilation unit
  55. CompilationUnitContextType.variable.description.primary.type.name=Filename without extension
  56. CompilationUnitContextType.variable.description.enclosing.method=Enclosing method name
  57. CompilationUnitContextType.variable.description.enclosing.type=Enclosing type name
  58. CompilationUnitContextType.variable.description.enclosing.package=Enclosing package name
  59. CompilationUnitContextType.variable.description.enclosing.project=Enclosing project name
  60. CompilationUnitContextType.variable.description.enclosing.method.arguments=Argument names of enclosing method
  61. CompilationUnitContextType.variable.description.return.type=Enclosing method return type
  62.  
  63. JavaContextType.variable.description.array=A proposal for an array
  64. JavaContextType.variable.description.array.type=A proposal for the element type of an array
  65. JavaContextType.variable.description.array.element=A proposal for the element name of an array
  66. JavaContextType.variable.description.index=A proposal for an index (int)
  67. JavaContextType.variable.description.collection=A proposal for a collection (java.util.Collection)
  68. JavaContextType.variable.description.iterator=A proposal for an iterator (java.util.Iterator)
  69. JavaContextType.variable.description.todo=Todo task tag
  70.  
  71. JavaContext.error.title=Template Error
  72. JavaContext.error.message=Template file incomplete or has errors.  You can load the default templates from the template preference page (Java>Templates).
  73.  
  74. CodeTemplateContextType.variable.description.todo=Todo task tag
  75. CodeTemplateContextType.variable.description.packdeclaration=Package declaration of the new type
  76. CodeTemplateContextType.variable.description.typedeclaration=Generated type declaration
  77. CodeTemplateContextType.variable.description.getterfieldname=The name of field to set or get
  78. CodeTemplateContextType.variable.description.getterfieldtype=The type of the field to set or get
  79. CodeTemplateContextType.variable.description.fieldname=The name of field
  80. CodeTemplateContextType.variable.description.fieldtype=The type of the field
  81. CodeTemplateContextType.variable.description.barefieldname=The name of field to set or get without prefix or suffix
  82. CodeTemplateContextType.variable.description.param=The parameter passed into the setter method
  83. CodeTemplateContextType.variable.description.typecomment=Content of code template 'typecomment'
  84. CodeTemplateContextType.variable.description.exceptiontype=The type of the caught exception
  85. CodeTemplateContextType.variable.description.exceptionvar=The variable name of the caught exception
  86. CodeTemplateContextType.variable.description.enclosingtype=The type enclosing this method
  87. CodeTemplateContextType.variable.description.typename=Name of the current type
  88. CodeTemplateContextType.variable.description.enclosingmethod=The enclosing method
  89. CodeTemplateContextType.variable.description.bodystatement=Return statement or super call
  90. CodeTemplateContextType.variable.description.returntype=Return type of the enclosing method
  91. CodeTemplateContextType.variable.description.tags=Generated Javadoc tags (@param, @return...)
  92. CodeTemplateContextType.variable.description.seetag=See tag pointing to the overridden method (@see T#m())
  93.  
  94. CodeTemplateContextType.variable.description.filename=Name of the enclosing compilation unit
  95. CodeTemplateContextType.variable.description.packagename=Name of the enclosing package
  96. CodeTemplateContextType.variable.description.projectname=Name of the enclosing project
  97.  
  98. CodeTemplateContextType.validate.unknownvariable=Variable ''{0}'' is unknown.
  99. CodeTemplateContextType.validate.missingvariable=Variable ''{0}'' is required.
  100. CodeTemplateContextType.validate.invalidcomment=Pattern is not a valid Java comment.
  101.  
  102.  
  103. # strings in default templates
  104. CodeTemplates.constructorcomment=Comment for created constructors
  105. CodeTemplates.filecomment=Comment for created Java files
  106. CodeTemplates.typecomment=Comment for created types
  107. CodeTemplates.fieldcomment=Comment for fields
  108. CodeTemplates.nonoverridingcomment=Comment for non-overriding methods
  109. CodeTemplates.overridecomment=Comment for overriding methods
  110. CodeTemplates.gettercomment=Comment for getter method
  111. # ! Do not translate ${bare_field_name} !
  112. CodeTemplates.gettercomment.returntagcontent=Returns the ${bare_field_name}.
  113. CodeTemplates.settercomment=Comment for setter method
  114. # ! Do not translate ${bare_field_name} !
  115. CodeTemplates.settercomment.paramtagcontent=The ${bare_field_name} to set.
  116.  
  117. CodeTemplates.newfile=Newly created files
  118. CodeTemplates.catchblock=Code in new catch blocks
  119. CodeTemplates.methodstub=Code in created method stubs
  120. CodeTemplates.constructorstub=Code in created constructor stubs
  121. CodeTemplates.getterstub=Code in created getters
  122. CodeTemplates.setterstub=Code in created setters
  123.  
  124. CodeTemplates.overridecomment.nonjd=(non-Javadoc)
  125.  
  126. CodeTemplates.catchblock.tododesc=Auto-generated catch block
  127. CodeTemplates.methodstub.tododesc=Auto-generated method stub
  128. CodeTemplates.constructorstub.tododesc=Auto-generated constructor stub
  129.  
  130.